##################################################################################
# Friend Finder for Xoops RC3  Version 3.03 beta                                 #
#                                                                                #
# Script design  : PhpMeet  :   Copyright 2002 Jeremy Ross-webmaster@phprank.com #
# Created 15/01/02              Last Modified 15/01/02                           #
# Scripts Home              :   http://www.jrscripts.com                         #
#                                                                                #
# Xoops-RC2 French Version  :   jokerman@free.fr                                 #
# Web Home                     :   http://www.webetfric.com                      #
#                                                                                #
# Xoops-RC2 English Version :          Neon@neon.qldgamers.com                   #
# Web Home                  :   http://neon.qldgamers.com                        #
#                                                                                #
#                 Redesigned and new improvemends by                             #
#        eagle81 Manuel Caballero       Manuel@dancepartner.net                  #
#                    http://www.dancepartner.net                                 #
#                             2002-09-15                                         #
##################################################################################

Attention:

Due to the new tables comming with Friendfinder 3.xx it will not work as an update of Friendfinder 2.xx. So Please uninstall the old version and make a new install of Friendfinder 3.xx 

INSTALL EN -> 2) Upload all file and folders to your website.
	      3) CHMOD members/uploads to 777
	      4) CHMOD cache to 777 and config file to 666	
	      5) Go to xoops admin, and install the Mod.
	      That's all folk's !

#######USEFUL Information to make administration a bit easier:####################

Adding friendfinder profiles to Wating Content

go to modules/system/blocks/system_blocks.php

go to line 126 after "}" and add the following lines


	if (XoopsModule::moduleExists("friendfinder")) {
		$result = $xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("friendfinder")." WHERE active=0");
		if ( $result ) {
			list($num) = $xoopsDB->fetchRow($result);
    			$block['content'] .= "<strong><big>&middot;</big></strong>&nbsp;<a href='".XOOPS_URL."/modules/friendfinder/admin/view-all.php'>"._MB_SYSTEM_FINDER."</a>: $num<br />\n";
		}
	}

then go to modules/system/language/your default sytem language/blocks.php

and add the following line:

define("_MB_SYSTEM_FINDER","New friendfinder profiles");

##################################################################################
